home *** CD-ROM | disk | FTP | other *** search
- package sun.io;
-
- import sun.nio.cs.MS1253;
-
- public class CharToByteCp1253 extends CharToByteSingleByte {
- private static final MS1253 nioCoder = new MS1253();
-
- public String getCharacterEncoding() {
- return "Cp1253";
- }
-
- public CharToByteCp1253() {
- super.mask1 = 65280;
- super.mask2 = 255;
- super.shift = 8;
- super.index1 = nioCoder.getEncoderIndex1();
- super.index2 = nioCoder.getEncoderIndex2();
- }
- }
-